home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / FISCYR15.ARJ / YEAR.DOC < prev    next >
Text File  |  1992-01-03  |  3KB  |  73 lines

  1.  
  2.           Y E A R   --   F I S C A L   C A L E N D A R   P R O G R A M
  3.  
  4.  
  5. PURPOSE:
  6.     The YEAR program's purpose is to output a Fiscal Calendar for the current
  7.     or User-specified Year.
  8.  
  9.  
  10. SYNTAX:
  11.     YEAR [year]
  12.          where 'year' is any year between 1753 and 3999 inclusive.
  13.  
  14. FILES:
  15.     year.exe - Executable for the Fiscal Calendar Program.
  16.     year.c   - C source for year.exe.
  17.                It should compile using any ANSI C compiler.
  18.     year.doc - This Documentation.
  19.  
  20.  
  21. DISTRIBUTION:
  22.     This program is hereby donated to the Public Domain.  If you should share
  23.     the program with others, please provide all three of the above files.
  24.  
  25.  
  26. NOTES ON FISCAL CALENDARS:
  27.     (1) All Fiscal Weeks begin on Mondays and end on Sundays.
  28.  
  29.     (2) There are usually 52 Fiscal Weeks in a Year.   The exception to this
  30.         is when January 1st of the FOLLOWING YEAR falls on Friday, in which
  31.         case there are 53 Fiscal Weeks in the Year.
  32.  
  33.     (3) Owing to the fact that 7 (the number of days in a week) does NOT
  34.         divide evenly into either 365 or 366, Fiscal Week 1 and Fiscal Week
  35.         52 (or 53) often contain days from the prior and following years
  36.         respectively.  The following table summarizes the Fiscal Week that
  37.         January 1st falls under:
  38.  
  39.          Jan 1st        Fiscal  Week
  40.         ---------    ------------------
  41.         Monday       FW  1 current year
  42.         Tuesday      FW  1 current year
  43.         Wednesday    FW  1 current year
  44.         Thursday     FW  1 current year
  45.         Friday       FW 53 prior year
  46.         Saturday     FW 52 prior year
  47.         Sunday       FW 52 prior year
  48.  
  49.     (4) The months are made up of a fixed number of Fiscal Weeks:
  50.  
  51.         1ST QUARTER:                 3RD QUARTER:
  52.         January  - 4 Fiscal Weeks    July      - 4 Fiscal Weeks
  53.         February - 4 Fiscal Weeks    August    - 4 Fiscal Weeks
  54.         March    - 5 Fiscal Weeks    September - 5 Fiscal Weeks
  55.  
  56.         2ND QUARTER:                 4TH QUARTER:
  57.         April    - 4 Fiscal Weeks    October   - 4 Fiscal Weeks
  58.         May      - 4 Fiscal Weeks    November  - 4 Fiscal Weeks
  59.         June     - 5 Fiscal Weeks    December  - 5/6 Fiscal Weeks
  60.  
  61.     (5) The Fiscal Quarters are comprised of the following Fiscal Weeks:
  62.  
  63.         1st Quarter   FW  1 --> FW 13
  64.         2nd Quarter   FW 14 --> FW 26
  65.         3rd Quarter   FW 27 --> FW 39
  66.         4th Quarter   FW 40 --> FW 52 (or FW 53)
  67.  
  68.  
  69. AUTHOR:
  70.     Jim Rickman
  71.     41 Lincoln Lane
  72.     Sudbury, MA  01776
  73.